records

records

Active filters Clear all

No active filters

Filters

Airbnb listings

Attachments

Click to expand Click to collapse

Dataset schema

Click to expand Click to collapse
Room ID
               

No description available for this field.

Name (identifier)
id
Type
integer
Sample
                       
Name
               

No description available for this field.

Name (identifier)
name
Type
text
Sample
                       
Host ID
               

No description available for this field.

Name (identifier)
host_id
Type
integer
Sample
                       
Neighbourhood
               

No description available for this field.

Name (identifier)
neighbourhood
Type
text
Sample
                       
Room type
               

No description available for this field.

Name (identifier)
room_type
Type
text
Sample
                       
Room Price
Room price /night /person

No description available for this field.

Name (identifier)
column_10
Type
integer
Unit
$
Sample
                       
Minimum nights
Minimum of nights for reservation

No description available for this field.

Name (identifier)
minimum_nights
Type
integer
Sample
                       
Number of reviews
               

No description available for this field.

Name (identifier)
number_of_reviews
Type
integer
Sample
                       
Date last review
               

No description available for this field.

Name (identifier)
last_review
Type
date
Sample
                       
Number of reviews per month
Average number of reviews / month

No description available for this field.

Name (identifier)
reviews_per_month
Type
decimal
Sample
                       
Rooms rent by the host
Number of rooms/flats rent by the host

No description available for this field.

Name (identifier)
calculated_host_listings_count
Type
integer
Sample
                       
Availibility
Availibility of the room (in days / year)

No description available for this field.

Name (identifier)
availability_365
Type
integer
Unit
days
Sample
                       
Updated Date
               

No description available for this field.

Name (identifier)
updated_date
Type
date
Sample
                       
City
               

No description available for this field.

Name (identifier)
city
Type
text
Sample
                       
Country
               

No description available for this field.

Name (identifier)
column_19
Type
text
Sample
                       
Coordinates
               

No description available for this field.

Name (identifier)
coordinates
Type
geo point
Sample
                       
Location
               

No description available for this field.

Name (identifier)
column_20
Type
text
Sample
                       

JSON Schema

The following JSON object is a standardized description of your dataset's schema. More about JSON schema.

{
  • "title":"air-bnb-listings",
  • "type":"object",
  • "oneOf":
    [
    • {
      • "$ref":"#/definitions/air-bnb-listings"
      }
    ]
    ,
  • "definitions":
    {
    • "air-bnb-listings":
      {
      • "properties":
        {
        • "records":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/air-bnb-listings_records"
            }
          }
        }
      }
      ,
    • "geoJSON":
      {
      • "title":"Geo JSON object",
      • "description":"Schema for a Geo JSON object",
      • "type":"object",
      • "required":
        [
        • "type"
        ]
        ,
      • "properties":
        {
        • "crs":
          {
          • "$ref":"#/definitions/crs"
          }
          ,
        • "bbox":
          {
          • "$ref":"#/definitions/bbox"
          }
        }
        ,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/geometry"
          }
          ,
        • {
          • "$ref":"#/definitions/geometryCollection"
          }
          ,
        • {
          • "$ref":"#/definitions/feature"
          }
          ,
        • {
          • "$ref":"#/definitions/featureCollection"
          }
        ]
      }
      ,
    • "bbox":
      {
      • "description":"A bounding box as defined by GeoJSON",
      • "type":"array",
      • "items":
        {
        • "type":"number"
        }
      }
      ,
    • "crs":
      {
      • "title":"crs",
      • "description":"a Coordinate Reference System object",
      • "type":
        [
        • "object",
        • "null"
        ]
        ,
      • "required":
        [
        • "type",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "type":"string"
          }
          ,
        • "properties":
          {
          • "type":"object"
          }
        }
        ,
      • "additionalProperties":false,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/namedCrs"
          }
          ,
        • {
          • "$ref":"#/definitions/linkedCrs"
          }
        ]
      }
      ,
    • "namedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "name"
            ]
          }
          ,
        • "properties":
          {
          • "required":
            [
            • "name"
            ]
            ,
          • "additionalProperties":false,
          • "properties":
            {
            • "name":
              {
              • "type":"string"
              }
            }
          }
        }
      }
      ,
    • "linkedObject":
      {
      • "type":"object",
      • "required":
        [
        • "href"
        ]
        ,
      • "properties":
        {
        • "href":
          {
          • "type":"string",
          • "format":"uri"
          }
          ,
        • "type":
          {
          • "type":"string",
          • "description":"Suggested values: proj4, ogjwkt, esriwkt"
          }
        }
      }
      ,
    • "linkedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "link"
            ]
          }
          ,
        • "properties":
          {
          • "$ref":"#/definitions/linkedObject"
          }
        }
      }
      ,
    • "geometryCollection":
      {
      • "title":"GeometryCollection",
      • "description":"A collection of geometry objects",
      • "required":
        [
        • "geometries"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "GeometryCollection"
            ]
          }
          ,
        • "geometries":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"http://json-schema.org/geojson/geometry.json#"
            }
          }
        }
      }
      ,
    • "feature":
      {
      • "title":"Feature",
      • "description":"A Geo JSON feature object",
      • "required":
        [
        • "geometry",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "Feature"
            ]
          }
          ,
        • "geometry":
          {
          • "oneOf":
            [
            • {
              • "type":"null"
              }
              ,
            • {
              • "$ref":"#/definitions/geometry"
              }
            ]
          }
          ,
        • "properties":
          {
          • "type":
            [
            • "object",
            • "null"
            ]
          }
          ,
        • "id":
          {
            }
          }
        }
        ,
      • "featureCollection":
        {
        • "title":"FeatureCollection",
        • "description":"A Geo JSON feature collection",
        • "required":
          [
          • "features"
          ]
          ,
        • "properties":
          {
          • "type":
            {
            • "enum":
              [
              • "FeatureCollection"
              ]
            }
            ,
          • "features":
            {
            • "type":"array",
            • "items":
              {
              • "$ref":"#/definitions/feature"
              }
            }
          }
        }
        ,
      • "geometry":
        {
        • "title":"geometry",
        • "description":"One geometry as defined by GeoJSON",
        • "type":"object",
        • "required":
          [
          • "type",
          • "coordinates"
          ]
          ,
        • "oneOf":
          [
          • {
            • "title":"Point",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Point"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/position"
                }
              }
            }
            ,
          • {
            • "title":"MultiPoint",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPoint"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/positionArray"
                }
              }
            }
            ,
          • {
            • "title":"LineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "LineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/lineString"
                }
              }
            }
            ,
          • {
            • "title":"MultiLineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiLineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/lineString"
                  }
                }
              }
            }
            ,
          • {
            • "title":"Polygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Polygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/polygon"
                }
              }
            }
            ,
          • {
            • "title":"MultiPolygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPolygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/polygon"
                  }
                }
              }
            }
          ]
          ,
        • "position":
          {
          • "description":"A single position",
          • "type":"array",
          • "minItems":2,
          • "items":
            [
            • {
              • "type":"number"
              }
              ,
            • {
              • "type":"number"
              }
            ]
            ,
          • "additionalItems":false
          }
          ,
        • "positionArray":
          {
          • "description":"An array of positions",
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/position"
            }
          }
          ,
        • "lineString":
          {
          • "description":"An array of two or more positions",
          • "allOf":
            [
            • {
              • "$ref":"#/definitions/positionArray"
              }
              ,
            • {
              • "minItems":2
              }
            ]
          }
          ,
        • "linearRing":
          {
          • "description":"An array of four positions where the first equals the last",
          • "allOf":
            [
            • {
              • "$ref":"#/definitions/positionArray"
              }
              ,
            • {
              • "minItems":4
              }
            ]
          }
          ,
        • "polygon":
          {
          • "description":"An array of linear rings",
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/linearRing"
            }
          }
        }
        ,
      • "air-bnb-listings_records":
        {
        • "properties":
          {
          • "fields":
            {
            • "type":"object",
            • "properties":
              {
              • "id":
                {
                • "type":"integer",
                • "title":"Room ID",
                • "description":""
                }
                ,
              • "name":
                {
                • "type":"string",
                • "title":"Name",
                • "description":""
                }
                ,
              • "host_id":
                {
                • "type":"integer",
                • "title":"Host ID",
                • "description":""
                }
                ,
              • "neighbourhood":
                {
                • "type":"string",
                • "title":"Neighbourhood",
                • "description":""
                }
                ,
              • "room_type":
                {
                • "type":"string",
                • "title":"Room type",
                • "description":""
                }
                ,
              • "column_10":
                {
                • "type":"integer",
                • "title":"Room Price",
                • "description":"Room price /night /person",
                • "unit":"$"
                }
                ,
              • "minimum_nights":
                {
                • "type":"integer",
                • "title":"Minimum nights",
                • "description":"Minimum of nights for reservation"
                }
                ,
              • "number_of_reviews":
                {
                • "type":"integer",
                • "title":"Number of reviews",
                • "description":""
                }
                ,
              • "last_review":
                {
                • "type":"string",
                • "format":"date",
                • "title":"Date last review",
                • "description":""
                }
                ,
              • "reviews_per_month":
                {
                • "type":"number",
                • "title":"Number of reviews per month",
                • "description":"Average number of reviews / month"
                }
                ,
              • "calculated_host_listings_count":
                {
                • "type":"integer",
                • "title":"Rooms rent by the host",
                • "description":"Number of rooms/flats rent by the host"
                }
                ,
              • "availability_365":
                {
                • "type":"integer",
                • "title":"Availibility",
                • "description":"Availibility of the room (in days / year)",
                • "unit":"days"
                }
                ,
              • "updated_date":
                {
                • "type":"string",
                • "format":"date",
                • "title":"Updated Date",
                • "description":""
                }
                ,
              • "city":
                {
                • "type":"string",
                • "title":"City",
                • "description":""
                }
                ,
              • "column_19":
                {
                • "type":"string",
                • "title":"Country",
                • "description":""
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"Coordinates",
                • "description":""
                }
                ,
              • "column_20":
                {
                • "type":"string",
                • "title":"Location",
                • "description":""
                }
              }
            }
          }
        }
      }
    }

    Similar datasets